home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d18 / loancalc.arc / READINT.PAS < prev    next >
Pascal/Delphi Source File  |  1991-04-28  |  258b  |  8 lines

  1. FUNCTION ReadInt(VAR i: integer; low, high: integer): boolean;
  2. { Attempt to read an integer between low and high. Return
  3.   true and the integer (through i) iff successful. }
  4. BEGIN
  5.   readln(i);
  6.   ReadInt := (i >= low) AND (i <= high)
  7. END; { ReadInt }
  8.